home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2005 October / PCWOCT05.iso / Software / FromTheMag / XAMPP 1.4.14 / xampp-win32-1.4.14-installer.exe / xampp / phpMyAdmin / tbl_select.php < prev    next >
PHP Script  |  2004-11-02  |  19KB  |  443 lines

  1. <?php
  2. /* $Id: tbl_select.php,v 2.25 2004/11/03 13:56:52 garvinhicking Exp $ */
  3. // vim: expandtab sw=4 ts=4 sts=4:
  4.  
  5.  
  6. /**
  7.  * Gets some core libraries
  8.  */
  9. require_once('./libraries/grab_globals.lib.php');
  10. require_once('./libraries/common.lib.php');
  11. require_once('./libraries/relation.lib.php'); // foreign keys
  12. require_once('./libraries/mysql_charsets.lib.php');
  13.  
  14. if ($cfg['PropertiesIconic'] == true) {
  15.     // We need to copy the value or else the == 'both' check will always return true
  16.     $propicon = (string)$cfg['PropertiesIconic'];
  17.  
  18.     if ($propicon == 'both') {
  19.         $iconic_spacer = '<div class="nowrap">';
  20.     } else {
  21.         $iconic_spacer = '';
  22.     }
  23.  
  24.     $titles['Browse']     = $iconic_spacer . '<img width="16" height="16" src="' . $pmaThemeImage . 'b_browse.png" alt="' . $strBrowseForeignValues . '" title="' . $strBrowseForeignValues . '" border="0" />';
  25.  
  26.     if ($propicon == 'both') {
  27.         $titles['Browse']        .= ' ' . $strBrowseForeignValues . '</div>';
  28.     }
  29. } else {
  30.     $titles['Browse']        = $strBrowseForeignValues;
  31. }
  32.  
  33. /**
  34.  * Not selection yet required -> displays the selection form
  35.  */
  36. if (!isset($param) || $param[0] == '') {
  37.     // Gets some core libraries
  38.     require('./tbl_properties_common.php');
  39.     //$err_url   = 'tbl_select.php' . $err_url;
  40.     $url_query .= '&goto=tbl_select.php&back=tbl_select.php';
  41.  
  42.     /**
  43.      * Gets tables informations
  44.      */
  45.     require('./tbl_properties_table_info.php');
  46.  
  47.     /**
  48.      * Displays top menu links
  49.      */
  50.     require('./tbl_properties_links.php');
  51.  
  52.     if (!isset($goto)) {
  53.         $goto = $cfg['DefaultTabTable'];
  54.     }
  55.     // Defines the url to return to in case of error in the next sql statement
  56.     $err_url   = $goto . '?' . PMA_generate_common_url($db, $table);
  57.  
  58.     // Gets the list and number of fields
  59.     $result    = PMA_DBI_query('SHOW' . (PMA_MYSQL_INT_VERSION >= 40100 ? ' FULL' : '') . ' FIELDS FROM ' . PMA_backquote($table) . ' FROM ' . PMA_backquote($db) . ';', NULL, PMA_DBI_QUERY_STORE);
  60.     $fields_cnt        = PMA_DBI_num_rows($result);
  61.     // rabue: we'd better ensure, that all arrays are empty.
  62.     $fields_list = $fields_null = $fields_type = $fields_collation = array();
  63.     while ($row = PMA_DBI_fetch_assoc($result)) {
  64.         $fields_list[] = $row['Field'];
  65.         $type          = $row['Type'];
  66.         // reformat mysql query output - staybyte - 9. June 2001
  67.         if (strncasecmp($type, 'set', 3) == 0
  68.             || strncasecmp($type, 'enum', 4) == 0) {
  69.             $type      = str_replace(',', ', ', $type);
  70.         } else {
  71.             $type      = str_replace(array('binary', 'zerofill', 'unsigned'), '', strtolower($type));
  72.         }
  73.         if (empty($type)) {
  74.             $type      = ' ';
  75.         }
  76.         $fields_null[] = $row['Null'];
  77.         $fields_type[] = $type;
  78.         $fields_collation[] = PMA_MYSQL_INT_VERSION >= 40100 && !empty($row['Collation']) && $row['Collation'] != 'NULL'
  79.                           ? $row['Collation']
  80.                           : '';
  81.     } // end while
  82.     PMA_DBI_free_result($result);
  83.     unset($result, $type);
  84.  
  85.     // <markus@noga.de>
  86.     // retrieve keys into foreign fields, if any
  87.     $cfgRelation = PMA_getRelationsParam();
  88.     // check also foreigners even if relwork is FALSE (to get
  89.     // foreign keys from innodb)
  90.     //$foreigners  = ($cfgRelation['relwork'] ? PMA_getForeigners($db, $table) : FALSE);
  91.     $foreigners  = PMA_getForeigners($db, $table);
  92.     ?>
  93. <script language="JavaScript" type="text/javascript">
  94. <!--
  95. function PMA_tbl_select_operator(f, index, multiple) {
  96.     switch (f.elements["func[" + index + "]"].options[f.elements["func[" + index + "]"].selectedIndex].value) {
  97. <?php
  98.         reset($GLOBALS['cfg']['UnaryOperators']);
  99.         while (list($operator) = each($GLOBALS['cfg']['UnaryOperators'])) {
  100.             echo '        case "' . $operator . "\":\r\n";
  101.         }
  102. ?>
  103.             bDisabled = true;
  104.             break;
  105.  
  106.         default:
  107.             bDisabled = false;
  108.     }
  109.     f.elements["fields[" + index + "]" + ((multiple) ? "[]": "")].disabled = bDisabled;
  110. }
  111. // -->
  112. </script>
  113. <form method="post" action="tbl_select.php" name="insertForm">
  114.     <?php echo PMA_generate_common_hidden_inputs($db, $table); ?>
  115.     <input type="hidden" name="goto" value="<?php echo $goto; ?>" />
  116.     <input type="hidden" name="back" value="tbl_select.php" />
  117.     <table border="0" cellpadding="0" cellspacing="0">
  118.         <tr>
  119.             <td valign="top">
  120.                 <table border="0" cellpadding="3" cellspacing="0">
  121.                     <tr>
  122.                         <th align="left" colspan="2">
  123.                             <?php echo $strSelectFields; ?>
  124.                         </th>
  125.                     </tr>
  126.                     <tr>
  127.                         <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
  128.                             <select name="param[]" size="<?php echo min($fields_cnt, 10); ?>" multiple="multiple" align="left">
  129.     <?php
  130.     echo "\n";
  131.     // Displays the list of the fields
  132.     for ($i = 0 ; $i < $fields_cnt; $i++) {
  133.         echo '                            '
  134.             . '<option value="' . htmlspecialchars($fields_list[$i]) . '" selected="selected">' . htmlspecialchars($fields_list[$i]) . '</option>' . "\n";
  135.     }
  136.     ?>
  137.                             </select>
  138.                         </td>
  139.                         <td valign="bottom" bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
  140.                             <input type="checkbox" name="distinct" value="DISTINCT" id="oDistinct" /><label for="oDistinct">DISTINCT</label>
  141.                         </td>
  142.                     </tr>
  143.                 </table>
  144.             </td>
  145.             <td nowrap="nowrap" width="50"> </td>
  146.             <td valign="top">
  147.                 <table border="0" cellpadding="3" cellspacing="0">
  148.                     <tr>
  149.                         <th align="left">
  150.                             <?php echo $strLimitNumRows . "\n"; ?>:
  151.                         </th>
  152.                     </tr>
  153.                     <tr>
  154.                         <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
  155.                             <input type="text" size="4" name="session_max_rows" value="<?php echo $cfg['MaxRows']; ?>" class="textfield" />
  156.                         </td>
  157.                     </tr>
  158.                     <tr>
  159.                         <td> </td>
  160.                     </tr>
  161.                     <tr>
  162.                         <th align="left">
  163.                             <?php echo $strDisplayOrder; ?>
  164.                         </th>
  165.                     </tr>
  166.                     <tr>
  167.                         <td bgcolor="<?php echo $cfg['BgcolorOne']; ?>">
  168.                             <select name="orderField" style="vertical-align: middle">
  169.                                 <option value="--nil--"></option>
  170.             <?php
  171.     echo "\n";
  172.     for ($i = 0; $i < $fields_cnt; $i++) {
  173.         echo '                                ';
  174.         echo '<option value="' . htmlspecialchars($fields_list[$i]) . '">' . htmlspecialchars($fields_list[$i]) . '</option>' . "\n";
  175.     } // end for
  176.     ?>
  177.                             </select><br />
  178.                             <input type="radio" name="order" value="ASC" checked="checked" id="sortASC" /><label for="sortASC"><?php echo $strAscending; ?></label><br />
  179.                             <input type="radio" name="order" value="DESC" id="sortDESC" /><label for="sortDESC"><?php echo $strDescending; ?></label>
  180.                         </td>
  181.                     </tr>
  182.                 </table>
  183.             </td>
  184.         </tr>
  185.     </table>
  186.     <table border="0" cellpadding="3" cellspacing="0">
  187.         <tr>
  188.             <td colspan="2"> </td>
  189.         </tr>
  190.         <tr>
  191.             <th align="left" class="tblHeaders" colspan="2">
  192.                 <?php echo $strAddSearchConditions; ?>
  193.                 <?php echo PMA_showMySQLDocu('Reference', 'Functions') . "\n"; ?>
  194.             </th>
  195.         </tr>
  196.         <tr>
  197.             <td>
  198.                 <input type="text" name="where" class="textfield" size="64" />
  199.             </td>
  200.             <td align="right">
  201.                 <input type="submit" name="submit" value="<?php echo $strGo; ?>" />
  202.             </td>
  203.         </tr>
  204.         <tr>
  205.             <td colspan="2"> </td>
  206.         </tr>
  207.         <tr>
  208.             <th align="left" class="tblHeaders" colspan="2">
  209.                 <?php echo '<i>' . $strOr . '</i> ' . $strDoAQuery; ?>
  210.             </th>
  211.         </tr>
  212.         <tr>
  213.             <td colspan="2">
  214.             <table border="<?php echo $cfg['Border']; ?>" cellpadding="2" cellspacing="1">
  215.             <tr>
  216.                 <th><?php echo $strField; ?></th>
  217.                 <th><?php echo $strType; ?></th>
  218.                 <?php echo PMA_MYSQL_INT_VERSION >= 40100 ? '<th>' . $strCollation . '</th>' . "\n" : ''; ?>
  219.                 <th><?php echo $strOperator; ?></th>
  220.                 <th><?php echo $strValue; ?></th>
  221.             </tr>
  222.     <?php
  223.     for ($i = 0; $i < $fields_cnt; $i++) {
  224.         echo "\n";
  225.         $bgcolor   = ($i % 2) ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo'];
  226.         ?>
  227.             <tr>
  228.                 <td bgcolor="<?php echo $bgcolor; ?>"><b><?php echo htmlspecialchars($fields_list[$i]); ?></b></td>
  229.                 <td bgcolor="<?php echo $bgcolor; ?>"><?php echo $fields_type[$i]; ?></td>
  230.                 <?php echo PMA_MYSQL_INT_VERSION >= 40100 ? '<td bgcolor="' . $bgcolor . '">' . $fields_collation[$i] . '</td>' . "\n" : ''; ?>
  231.                  <td bgcolor="<?php echo $bgcolor; ?>">
  232.                     <select name="func[]">
  233.         <?php
  234.         if (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
  235.             foreach ($GLOBALS['cfg']['EnumOperators'] as $k => $fc) {
  236.                 echo "\n" . '                        '
  237.                    . '<option value="' . htmlspecialchars($fc) . '">' . htmlspecialchars($fc) . '</option>';
  238.             }
  239.         } elseif (preg_match('@char|blob|text|set@i', $fields_type[$i])) {
  240.             foreach ($GLOBALS['cfg']['TextOperators'] as $k => $fc) {
  241.             echo "\n" . '                        '
  242.                . '<option value="' . htmlspecialchars($fc) . '">' . htmlspecialchars($fc) . '</option>';
  243.             }
  244.         } else {
  245.             foreach ($GLOBALS['cfg']['NumOperators'] as $k => $fc) {
  246.                 echo "\n" . '                        '
  247.                    . '<option value="' .  htmlspecialchars($fc) . '">' . htmlspecialchars($fc) . '</option>';
  248.             }
  249.         } // end if... else...
  250.         if ($fields_null[$i]) {
  251.             foreach ($GLOBALS['cfg']['NullOperators'] as $k => $fc) {
  252.                 echo "\n" . '                        '
  253.                    . '<option value="' .  htmlspecialchars($fc) . '">' . htmlspecialchars($fc) . '</option>';
  254.             }
  255.         }
  256.         echo "\n";
  257.         ?>
  258.                     </select>
  259.                 </td>
  260.                 <td bgcolor="<?php echo $bgcolor; ?>">
  261.         <?php
  262.         // <markus@noga.de>
  263.         $field = $fields_list[$i];
  264.  
  265.         // do not use require_once here
  266.         require('./libraries/get_foreign.lib.php');
  267.  
  268.         echo "\n";
  269.         // we got a bug report: in some cases, even if $disp is true,
  270.         // there are no rows, so we add a fetch_array
  271.  
  272.         if ($foreigners && isset($foreigners[$field]) && isset($disp_row) && is_array($disp_row)) {
  273.             // f o r e i g n    k e y s
  274.             echo '                    <select name="fields[' . $i . ']">' . "\n";
  275.             // go back to first row
  276.  
  277.             // here, the 4th parameter is empty because there is no current
  278.             // value of data for the dropdown (the search page initial values
  279.             // are displayed empty)
  280.             echo PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, '', 100);
  281.             echo '                    </select>' . "\n";
  282.         } else if (isset($foreign_link) && $foreign_link == true) {
  283.         ?>
  284.             <input type="text"   name="fields[<?php echo $i; ?>]" id="field_<?php echo md5($field); ?>[<?php echo $i; ?>]" class="textfield" />
  285.             <script type="text/javascript" language="javascript">
  286.                 document.writeln('<a target="_blank" onclick="window.open(this.href, \'foreigners\', \'width=640,height=240,scrollbars=yes\'); return false" href="browse_foreigners.php?<?php echo PMA_generate_common_url($db, $table); ?>&field=<?php echo urlencode($field); ?>&fieldkey=<?php echo $i; ?>"><?php echo str_replace("'", "\'", $titles['Browse']); ?></a>');
  287.             </script>
  288.         <?php
  289.         } else if (strncasecmp($fields_type[$i], 'enum', 4) == 0) {
  290.             // e n u m s
  291.             $enum_value=explode(', ', str_replace("'", '', substr($fields_type[$i], 5, -1)));
  292.             $cnt_enum_value = count($enum_value);
  293.             echo '                    <select name="fields[' . $i . '][]" multiple="multiple" size="' . min(3, $cnt_enum_value) . '">' . "\n";
  294.             for ($j = 0; $j < $cnt_enum_value; $j++) {
  295.                 echo '                        <option value="' . $enum_value[$j] . '">' . $enum_value[$j] . '</option>';
  296.             } // end for
  297.             echo '                    </select>' . "\n";
  298.         } else {
  299.             // o t h e r   c a s e s
  300.             echo '                    <input type="text" name="fields[' . $i . ']" size="40" class="textfield" />' .  "\n";
  301.         }
  302.  
  303.         ?>
  304.                     <input type="hidden" name="names[<?php echo $i; ?>]" value="<?php echo htmlspecialchars($fields_list[$i]); ?>" />
  305.                     <input type="hidden" name="types[<?php echo $i; ?>]" value="<?php echo $fields_type[$i]; ?>" />
  306.                     <input type="hidden" name="collations[<?php echo $i; ?>]" value="<?php echo $fields_collation[$i]; ?>" />
  307.                 </td>
  308.             </tr>
  309.         <?php
  310.     } // end for
  311.     echo "\n";
  312.     ?>
  313.             </table>
  314.             </td>
  315.         </tr>
  316.         <tr>
  317.             <td nowrap="nowrap" colspan="2" align="right">
  318.                 <input type="hidden" name="max_number_of_fields" value="<?php echo $fields_cnt; ?>" />
  319.                 <input type="submit" name="submit" value="<?php echo $strGo; ?>" />
  320.             </td>
  321.         </tr>
  322.     </table>
  323. </form>
  324.     <?php
  325.     require_once('./footer.inc.php');
  326. }
  327.  
  328.  
  329. /**
  330.  * Selection criteria have been submitted -> do the work
  331.  */
  332. else {
  333.     // Builds the query
  334.  
  335.     $sql_query = 'SELECT ' . (isset($distinct) ? 'DISTINCT ' : '');
  336.  
  337.     // if all fields were selected to display, we do a SELECT *
  338.     // (more efficient and this helps prevent a problem in IE
  339.     // if one of the rows is edited and we come back to the Select results)
  340.  
  341.     if (count($param) == $max_number_of_fields) {
  342.         $sql_query .= '* ';
  343.     } else {
  344.  
  345.         $sql_query .= PMA_backquote(urldecode($param[0]));
  346.         $c         = count($param);
  347.         for ($i = 1; $i < $c; $i++) {
  348.             $sql_query .= ',' . PMA_backquote(urldecode($param[$i]));
  349.         }
  350.     } // end if
  351.  
  352.     $sql_query .= ' FROM ' . PMA_backquote($table);
  353.  
  354.     // The where clause
  355.     if (trim($where) != '') {
  356.         $sql_query .= ' WHERE ' . $where;
  357.     } else {
  358.         $w = $charsets = array();
  359.         $cnt_func = count($func);
  360.         reset($func);
  361.         while (list($i, $func_type) = each($func)) {
  362.             if (PMA_MYSQL_INT_VERSION >= 40100) {
  363.                 list($charsets[$i]) = explode('_', $collations[$i]);
  364.             }
  365.             if (@$GLOBALS['cfg']['UnaryOperators'][$func_type] == 1) {
  366.                 $fields[$i] = '';
  367.                 $w[] = PMA_backquote(urldecode($names[$i])) . ' ' . $func_type;
  368.  
  369.             } elseif (strncasecmp($types[$i], 'enum', 4) == 0) {
  370.                 if (!empty($fields[$i])) {
  371.                     if (!is_array($fields[$i])) {
  372.                         $fields[$i] = explode(',', $fields[$i]);
  373.                     }
  374.                     $enum_selected_count = count($fields[$i]);
  375.                     if ($func_type == '=' && $enum_selected_count > 1) {
  376.                         $func_type    = $func[$i] = 'IN';
  377.                         $parens_open  = '(';
  378.                         $parens_close = ')';
  379.  
  380.                     } elseif ($func_type == '!=' && $enum_selected_count > 1) {
  381.                         $func_type    = $func[$i] = 'NOT IN';
  382.                         $parens_open  = '(';
  383.                         $parens_close = ')';
  384.  
  385.                     } else {
  386.                         $parens_open  = '';
  387.                         $parens_close = '';
  388.                     }
  389.                     $enum_where = '\'' . PMA_sqlAddslashes($fields[$i][0]) . '\'';
  390.                     if (PMA_MYSQL_INT_VERSION >= 40100 && $charsets[$i] != $charset_connection) {
  391.                         $enum_where = 'CONVERT(_utf8 ' . $enum_where . ' USING ' . $charsets[$i] . ') COLLATE ' . $collations[$i];
  392.                     }
  393.                     for ($e = 1; $e < $enum_selected_count; $e++) {
  394.                         $enum_where .= ', ';
  395.                         $tmp_literal = '\'' . PMA_sqlAddslashes($fields[$i][$e]) . '\'';
  396.                         if (PMA_MYSQL_INT_VERSION >= 40100 && $charsets[$i] != $charset_connection) {
  397.                             $tmp_literal = 'CONVERT(_utf8 ' . $tmp_literal . ' USING ' . $charsets[$i] . ') COLLATE ' . $collations[$i];
  398.                         }
  399.                         $enum_where .= $tmp_literal;
  400.                         unset($tmp_literal);
  401.                     }
  402.  
  403.                     $w[] = PMA_backquote(urldecode($names[$i])) . ' ' . $func_type . ' ' . $parens_open . $enum_where . $parens_close;
  404.                 }
  405.  
  406.             } elseif ($fields[$i] != '') {
  407.                 if (preg_match('@char|binary|blob|text|set|date|time|year@i', $types[$i])) {
  408.                     $quot = '\'';
  409.                 } else {
  410.                     $quot = '';
  411.                 }
  412.  
  413.                 // Make query independant from the selected connection charset.
  414.                 if (PMA_MYSQL_INT_VERSION >= 40101 && $charsets[$i] != $charset_connection && preg_match('@char|binary|blob|text|set@i', $types[$i])) {
  415.                     $prefix = 'CONVERT(_utf8 ';
  416.                     $suffix = ' USING ' . $charsets[$i] . ') COLLATE ' . $collations[$i];
  417.                 } else {
  418.                     $prefix = $suffix = '';
  419.                 }
  420.  
  421.                 // LIKE %...%
  422.                 if ($func_type == 'LIKE %...%') {
  423.                     $func_type = 'LIKE';
  424.                     $fields[$i] = '%' . $fields[$i] . '%';
  425.                 }
  426.                 $w[] = PMA_backquote(urldecode($names[$i])) . ' ' . $func_type . ' ' . $prefix . $quot . PMA_sqlAddslashes($fields[$i]) . $quot . $suffix;
  427.  
  428.             } // end if
  429.         } // end for
  430.  
  431.         if ($w) {
  432.             $sql_query .= ' WHERE ' . implode(' AND ', $w);
  433.         }
  434.     } // end if
  435.  
  436.     if ($orderField != '--nil--') {
  437.         $sql_query .= ' ORDER BY ' . PMA_backquote(urldecode($orderField)) . ' ' . $order;
  438.     } // end if
  439.     include('./sql.php');
  440. }
  441.  
  442. ?>
  443.